Add a segment number "n" to Logix_RMPS_Config Faceplate
The Logix_RMPS faceplates support RampSoak function blocks of up to 10 segments. If more than 10 segments are needed, you may need to add a segment number "n" to Logix_RMPS_Config Faceplate.
To add a segment number "n" to Logix_RMPS_Config Faceplate
- In Object Explorer, make a copy of the last Segment Group, typically SegmentDataPanel_Group-->Segment9_Group.
- Paste it at the same level, under SegmentDataPanel_Group.
- Rename the Polygon, Text, and NumericDisplays to your preference.
- Select the Text item created and change its value to n.
- Change the Ramp Value NumericDisplay's general expression to:
if ( {#1.NumberOfSegs} > n) then {#2.[n]} else -1
- Change the Soak Value NumericDisplay's general expression to:
if ( {#1.NumberOfSegs} > n) then {#3.[n]} else -1
- Change the Soak Time NumericDisplay's general expression to:
if ( {#1.NumberOfSegs} > n) then {#4.[n]} else -1
- Change the visibility animation for the Polygon to:
{#1.CurrentSeg} == n)
- Change the visibility animation for the whole Segment Group you created to:
{#1.NumberOfSegs} > n
- Resize the Logix_RMPS_Config faceplate and move the new Segment Group to line up with the others.
See also
About controller instruction faceplates
Controller instruction faceplates display list
Controller instruction faceplates tag passing
Add a segment number "n" to Logix_RMPS Main Faceplate